home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / the_aminet / dev / gcc / ixemulsrc.lha / ixemul-41.4 / stdio_2 / findfp.c < prev    next >
C/C++ Source or Header  |  1995-05-17  |  6KB  |  223 lines

  1. /*-
  2.  * Copyright (c) 1990 The Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * This code is derived from software contributed to Berkeley by
  6.  * Chris Torek.
  7.  *
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in the
  15.  *    documentation and/or other materials provided with the distribution.
  16.  * 3. All advertising materials mentioning features or use of this software
  17.  *    must display the following acknowledgement:
  18.  *    This product includes software developed by the University of
  19.  *    California, Berkeley and its contributors.
  20.  * 4. Neither the name of the University nor the names of its contributors
  21.  *    may be used to endorse or promote products derived from this software
  22.  *    without specific prior written permission.
  23.  *
  24.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  25.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  26.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  27.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  28.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  30.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  31.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  32.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  33.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  34.  * SUCH DAMAGE.
  35.  */
  36.  
  37. #if defined(LIBC_SCCS) && !defined(lint)
  38. static char sccsid[] = "@(#)findfp.c    5.10 (Berkeley) 2/24/91";
  39. #endif /* LIBC_SCCS and not lint */
  40.  
  41. #define KERNEL
  42. #include "ixemul.h"
  43.  
  44. #include <unistd.h>
  45. #include <stdio.h>
  46. #include <stdlib.h>
  47. #include <string.h>
  48. #include "local.h"
  49. #include "glue.h"
  50.  
  51. #if 0
  52. int    __sdidinit;
  53. #endif
  54.  
  55. #if 0
  56. #define NSTATIC    20    /* stdin + stdout + stderr + the usual */
  57. #else
  58. #define NSTATIC 0
  59. #endif
  60. #define    NDYNAMIC 10    /* add ten more whenever necessary */
  61.  
  62. #if 0
  63. #define    std(flags, file) \
  64.     {0,0,0,flags,file,{0},0,__sF+file,__sclose,__sread,__sseek,__swrite}
  65. /*     p r w flags file _bf z  cookie      close    read    seek    write */
  66.  
  67. static FILE usual[NSTATIC - 3];    /* the usual */
  68. static struct glue uglue = { 0, NSTATIC - 3, usual };
  69.  
  70. FILE __sF[3] = {
  71.     std(__SRD, STDIN_FILENO),        /* stdin */
  72.     std(__SWR, STDOUT_FILENO),        /* stdout */
  73.     std(__SWR|__SNBF, STDERR_FILENO)    /* stderr */
  74. };
  75. struct glue __sglue = { &uglue, 3, __sF };
  76. #else
  77. void
  78. __init_stdinouterr (void)
  79. {
  80.   FILE *fp;
  81.  
  82.   fp = u.u_sF[0] = __sfp();
  83.   if (fp)
  84.     {
  85.       fp->_flags  = __SRD;
  86.       fp->_file   = STDIN_FILENO;
  87.       fp->_cookie = fp;
  88.       fp->_close  = __sclose;
  89.       fp->_read   = __sread;
  90.       fp->_seek   = __sseek;
  91.       fp->_write  = __swrite;
  92.     }
  93.  
  94.   fp = u.u_sF[1] = __sfp();
  95.   if (fp)
  96.     {
  97.       fp->_flags  = __SWR;
  98.       fp->_file   = STDOUT_FILENO;
  99.       fp->_cookie = fp;
  100.       fp->_close  = __sclose;
  101.       fp->_read   = __sread;
  102.       fp->_seek   = __sseek;
  103.       fp->_write  = __swrite;
  104.     }
  105.  
  106.   fp = u.u_sF[2] = __sfp();
  107.   if (fp)
  108.     {
  109.       fp->_flags  = __SRW|__SNBF;
  110.       fp->_file   = STDERR_FILENO;
  111.       fp->_cookie = fp;
  112.       fp->_close  = __sclose;
  113.       fp->_read   = __sread;
  114.       fp->_seek   = __sseek;
  115.       fp->_write  = __swrite;
  116.     }
  117. }
  118. #endif
  119.  
  120. static struct glue *
  121. moreglue(n)
  122.     register int n;
  123. {
  124.     register struct glue *g;
  125.     register FILE *p;
  126.     const static FILE empty;    /* this static is ok in the library */
  127.  
  128.     g = (struct glue *)malloc(sizeof(*g) + n * sizeof(FILE));
  129.     if (g == NULL)
  130.         return (NULL);
  131.     p = (FILE *)(g + 1);
  132.     g->next = NULL;
  133.     g->niobs = n;
  134.     g->iobs = p;
  135.     while (--n >= 0)
  136.         *p++ = empty;
  137.     return (g);
  138. }
  139.  
  140. /*
  141.  * Find a free FILE for fopen et al.
  142.  */
  143. FILE *
  144. __sfp()
  145. {
  146.     register FILE *fp;
  147.     register int n;
  148.     register struct glue *g;
  149.  
  150. #if 0
  151.     if (!__sdidinit)
  152.         __sinit();
  153. #endif
  154.     for (g = &__sglue;; g = g->next) {
  155.         for (fp = g->iobs, n = g->niobs; --n >= 0; fp++)
  156.             if (fp->_flags == 0)
  157.                 goto found;
  158.         if (g->next == NULL && (g->next = moreglue(NDYNAMIC)) == NULL)
  159.             break;
  160.     }
  161.     return (NULL);
  162. found:
  163.     fp->_flags = 1;        /* reserve this slot; caller sets real flags */
  164.     fp->_p = NULL;        /* no current pointer */
  165.     fp->_w = 0;        /* nothing to read or write */
  166.     fp->_r = 0;
  167.     fp->_bf._base = NULL;    /* no buffer */
  168.     fp->_bf._size = 0;
  169.     fp->_lbfsize = 0;    /* not line buffered */
  170.     fp->_file = -1;        /* no file */
  171. /*    fp->_cookie = <any>; */    /* caller sets cookie, _read/_write etc */
  172.     fp->_ub._base = NULL;    /* no ungetc buffer */
  173.     fp->_ub._size = 0;
  174.     fp->_lb._base = NULL;    /* no line buffer */
  175.     fp->_lb._size = 0;
  176.     return (fp);
  177. }
  178.  
  179. /*
  180.  * XXX.  Force immediate allocation of internal memory.  Not used by stdio,
  181.  * but documented historically for certain applications.  Bad applications.
  182.  */
  183. f_prealloc()
  184. {
  185.     int n = getdtablesize() - NSTATIC + 20;        /* 20 for slop */
  186.     register struct glue *g;
  187.  
  188.     for (g = &__sglue; (n -= g->niobs) > 0 && g->next; g = g->next)
  189.         /* void */;
  190.     if (n > 0)
  191.         g->next = moreglue(n);
  192. }
  193.  
  194.  
  195. /* this is put into a plain atexit() chain for stdio inside the library */
  196.  
  197. /*
  198.  * exit() calls _cleanup() through *__cleanup, set whenever we
  199.  * open or buffer a file.  This chicanery is done so that programs
  200.  * that do not use stdio need not link it all in.
  201.  *
  202.  * The name `_cleanup' is, alas, fairly well known outside stdio.
  203.  */
  204. void
  205. _cleanup()
  206. {
  207.     /* (void) _fwalk(fclose); */
  208.     (void) _fwalk(__sflush);        /* `cheating' */
  209. }
  210.  
  211. #if 0
  212. /*
  213.  * __sinit() is called whenever stdio's internal variables must be set up.
  214.  */
  215. void
  216. __sinit()
  217. {
  218.     /* make sure we clean up on exit */
  219.     __cleanup = _cleanup;        /* conservative */
  220.     __sdidinit = 1;
  221. }
  222. #endif
  223.